98a8196507ad487c02f7bf2843f076ae56adbe6d,src/jrds/starter/SocketFactory.java,SocketFactory,createSocket,#,56

Before Change


    public Socket createSocket() throws IOException {
        if(! isStarted())
            return null;
        return getSocket();
    }

    private Socket getSocket() throws SocketException {

After Change


    public Socket createSocket() throws IOException {
        if(! isStarted())
            return null;
        SocketChannel s = getSocket();
        s.configureBlocking(true);
        return s.socket();
    }